home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
ms_dos
/
gds
/
source
/
gds226.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Windows-1254 (detected)
Wrap
C/C++ Source or Header
|
1993-07-08
|
325 b
|
19 lines
/*
*
* GDS226 : 境界線色
*
*/
#include <stdio.h>
#include <dos.h>
unsigned char *GDS_append(unsigned char *wp,unsigned int size);
void GDS_boundary_color(unsigned char *wp,unsigned int color) {
wp=GDS_append(wp,4);
*(unsigned int *)(wp+0)=0x5000+28*32+2;
*(unsigned int *)(wp+2)=color;
}